home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_etherstatd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10215);
  10.  script_version ("$Revision: 1.9 $");
  11.  
  12.  name["english"] = "etherstatd service";
  13.  name["francais"] = "Service etherstatd";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. The etherstatd service is running. 
  18. If you do not use this service, then
  19. disable it as it may become a security
  20. threat in the future, if a vulnerability
  21. is discovered.
  22.  
  23. Risk factor : Low";
  24.  
  25.  
  26.  desc["francais"] = "
  27. Le service RPC etherstatd tourne.
  28. Si vous ne l'utilisez pas, alors
  29. dΘsactivez-le puisqu'il risque de
  30. devenir un jour une faille de 
  31. sΘcuritΘ si une vulnerabilitΘ 
  32. est trouvΘe.
  33.  
  34. Facteur de risque : Faible";
  35.  
  36.  
  37.  script_description(english:desc["english"], francais:desc["francais"]);
  38.  
  39.  summary["english"] = "checks the presence of a RPC service";
  40.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  41.  script_summary(english:summary["english"], francais:summary["francais"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  
  46.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  47.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  48.  family["english"] = "RPC"; 
  49.  family["francais"] = "RPC";
  50.  script_family(english:family["english"], francais:family["francais"]);
  51.  script_dependencie("rpc_portmap.nasl");
  52.  script_require_keys("rpc/portmap");
  53.  exit(0);
  54. }
  55.  
  56. #
  57. # The script code starts here
  58. #
  59.  
  60. include("misc_func.inc");
  61.  
  62. RPC_PROG = 100010;
  63. tcp = 0;
  64. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  65. if(!port){
  66.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  67.     tcp = 1;
  68.     }
  69.  
  70. if(port)
  71. {
  72.  if(tcp)security_warning(port);
  73.  else security_warning(port, protocol:"udp");
  74. }
  75.